home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WWTCLKit / WWTextField.h < prev    next >
Encoding:
Text File  |  1995-03-22  |  506 b   |  29 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface WWTextField:TextField
  5. {
  6.   id    minText;
  7.   id    maxText;
  8.   id    valText;
  9.   id    interp;
  10. }
  11.  
  12. + initialize;
  13. + setCellClass:classID;
  14.  
  15. - initFrame:(const NXRect *)frameRect;
  16. - sendAction:(SEL)theAction to:theTarget;
  17. - setTclExpression:(const char *)str;
  18. - (const char *)tclExpression;
  19. - setTclVar:(const char *)str;
  20. - (const char *)tclVar;
  21.  
  22. - evaluateSelf;
  23.  
  24. - (const char *)getInspectorClassName;
  25. - write:(NXTypedStream *)stream;
  26. - read:(NXTypedStream *)stream; 
  27.  
  28. @end
  29.